crypto/tls.clientHandshakeState.hello (field)
16 uses
crypto/tls (current package)
handshake_client.go#L36: hello *clientHelloMsg
handshake_client.go#L374: hello: hello,
handshake_client.go#L556: if hs.session == nil && hs.hello.sessionId != nil && bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client.go#L576: if err := transcriptMsg(hs.hello, &hs.finishedHash); err != nil {
handshake_client.go#L636: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L643: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L724: err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
handshake_client.go#L775: preMasterSecret, ckx, err := keyAgreement.generateClientKeyExchange(c.config, hs.hello, c.peerCertificates[0])
handshake_client.go#L796: hs.hello.random, hs.serverHello.random)
handshake_client.go#L798: if err := c.config.writeKeyLog(keyLogLabelTLS12, hs.hello.random, hs.masterSecret); err != nil {
handshake_client.go#L863: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L884: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L885: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client.go#L931: if err := checkALPN(hs.hello.alpnProtocols, hs.serverHello.alpnProtocol, false); err != nil {
handshake_client.go#L1037: if !hs.hello.ticketSupported {